home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ibus.postinst < prev    next >
Text File  |  2009-11-05  |  922b  |  45 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. ua_inst () {
  5.     update-alternatives \
  6.         --install /etc/X11/xinit/xinput.d/$1 xinput-$1 \
  7.         /etc/X11/xinit/xinput.d/$2 $3 ;
  8. }
  9.  
  10. case "$1" in
  11.     configure)
  12.         #ua_inst all_ALL ibus  0
  13.         ua_inst ja_JP   ibus 60
  14.         ua_inst ko_KR   ibus 60
  15.         ua_inst zh_CN   ibus 60
  16.         ua_inst zh_TW   ibus 60
  17.         ua_inst zh_HK   ibus 60
  18.         ua_inst zh_SG   ibus 60
  19.     rm -f /etc/xdg/autostart/ibus.desktop
  20.     ;;
  21.  
  22.     abort-upgrade|abort-remove|abort-deconfigure)
  23.  
  24.     ;;
  25.  
  26.     *)
  27.         echo "postinst called with unknown argument \`$1'" >&2
  28.         exit 1
  29.     ;;
  30. esac
  31.  
  32. # Automatically added by dh_gconf
  33. if [ "$1" = "configure" ]; then
  34.     gconf-schemas --register ibus.schemas 
  35. fi
  36. # End automatically added section
  37. # Automatically added by dh_pysupport
  38. if which update-python-modules >/dev/null 2>&1; then
  39.     update-python-modules  ibus.private
  40. fi
  41. # End automatically added section
  42.  
  43.  
  44.  
  45.